/*	Gallery 1
/*----------------------------------------------------*/

/* Gallery Item
 * -------------------------- */
 
.isotope-gallery-container{
	margin-bottom:20px;
}

.gallery-item-wrapper {
    padding-bottom: 25px;
}
.gallery-item {
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 3px;
	padding-bottom:30px;
}
.flush .gallery-item {
    border-radius: 0;
}
.gallery-item .gallery-thumb {
    position: relative;
    overflow: hidden;
}

.gallery-item .gallery-thumb img {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
	height:120px;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.1);
}

.gallery-item .gallery-thumb .image-overlay {
    background-color: #2c3e50;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.gallery-item:hover .gallery-thumb .image-overlay {
    opacity: 0.50;
    filter: alpha(opacity=50);
}

.gallery-item .gallery-thumb .gallery-zoom, .gallery-item .gallery-thumb .gallery-link {
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: #2c3e50;
    line-height: 45px;
    position: absolute;
    top: 45%;
    padding-top: 13px;
    font-size: 18px;
    color: #fff;
    display: block;
}

.gallery-item .gallery-thumb .gallery-zoom:hover, .gallery-item .gallery-thumb .gallery-link:hover {
    background-color: #ef801a;
    color: #ffffff;
}

.gallery-item .gallery-thumb .gallery-zoom:focus, .gallery-item .gallery-thumb .gallery-link:focus {
	outline: none;
}

.gallery-item .gallery-thumb .gallery-link {
    right: 0;
    margin-right: -50px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.gallery-item .gallery-thumb .gallery-zoom {
    left: 0;
    margin-left: -50px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.gallery-item:hover .gallery-thumb .gallery-zoom {
    display: block;
    left: 60%;
    margin-left: -50px;
}

.gallery-item:hover .gallery-thumb .gallery-link {
    display: block;
    right: 55%;
    margin-right: -50px;
}

.gallery-item .gallery-details {
    text-align: center;
    padding-top: 20px;
    background-color: #fff;
    bor der: 2px solid #ecf0f1;
    border-top: 0;
    overflow: hidden;
}

.gallery-item .gallery-details h5 {
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    position: relative;
}

.gallery-item .gallery-details p {
    font-size: .9em;
}





/*	Gallery 1 MEDIA QUERIES
/*----------------------------------------------------*/

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
		
	
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	

	
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	
	
	
}

